home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / ASINH.C < prev    next >
C/C++ Source or Header  |  1991-03-10  |  87b  |  8 lines

  1. #include <math.h>
  2.  
  3. double asinh(double x)
  4. {
  5.   return log(x + sqrt(x*x + 1));
  6. }
  7.  
  8.